home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / manual-p / man_db-2.000 / man_db-2 / man_db-2.3.10 / xcat / Makefile.in next >
Encoding:
Makefile  |  1995-03-31  |  941 b   |  48 lines

  1. # xcat Makefile for the man package.
  2. #
  3. # Copyright (C) 1994, 1995, Graeme Wilford.
  4. #
  5. # You may distribute under the terms of the GNU General Public
  6. # License as specified in the COPYING file that comes with this
  7. # distribution.
  8. #
  9. # Sat Oct 29 13:09:31 GMT 1994  Wilf. (G.Wilford@ee.surrey.ac.uk) 
  10.  
  11. srcdir = @srcdir@
  12. VPATH = @srcdir@
  13. top_srcdir = @top_srcdir@
  14.  
  15. include ../include/Defines
  16.  
  17. .PHONY:    $(DEFAULT_TARGETS)
  18.  
  19. override CPPFLAGS := $(DEFS) -I../include -I$(top_srcdir) -I- $(CPPFLAGS)
  20.  
  21. # You may need to modify these options if you have lex instead of flex
  22. # and you want to play with xcat.l
  23. FLEXOPTS = -B8 -Cem
  24. LEX := $(LEX) $(FLEXOPTS)
  25. LDLIBS = @LEXLIB@
  26.  
  27. all: xcat
  28.  
  29. xcat: ../lib/libman.a
  30.  
  31. ../lib/libman.a: 
  32.     $(MAKE) -C ../lib
  33.     
  34. # The standard targets
  35. install uninstall:
  36.  
  37. mostlyclean clean:
  38.     rm -f xcat *.o core *~
  39.  
  40. distclean: xcat.c clean
  41.     rm -f Makefile
  42.  
  43. realclean: distclean
  44.     rm -f xcat.c tags
  45.  
  46. TAGS:
  47.     $(MKTAGS) $(srcdir)/xcat.[cl]
  48.